VIM 使用子匹配重排CSV文件的字段

1. 使用子匹配重排CSV文件的字段

last name,first name,email
neil,drew,drew@vimcasts.org
doe,john,john@example.com

%s/\v([^,]+),([^,]+),([^,]+)/\3,\2,\1/g